KeyValuePair<K,V>
System.IEquatable<KeyValuePair<K,V>>
, System.IFormattable
, IShowable
object
, System.ValueType
Key
,Value
KeyValuePair<K,V>(K key, V value)
,KeyValuePair<K,V>(K key)
Equals(object obj)
,Equals(KeyValuePair<K,V> other)
,Finalize()
, Inherited from object
,GetHashCode()
,GetType()
, Inherited from object
,MemberwiseClone()
, Inherited from object
,Show(System.Text.StringBuilder stringbuilder, ref int rest, System.IFormatProvider formatProvider)
,ToString()
,ToString(string format, System.IFormatProvider formatProvider)
operator !=(KeyValuePair<K,V> pair1, KeyValuePair<K,V> pair2)
,operator ==(KeyValuePair<K,V> pair1, KeyValuePair<K,V> pair2)
K Key | The key field of the entry |
V Value | The value field of the entry |
KeyValuePair<K,V>(K key, V value) |
Create an entry with specified key and value
| |||||
KeyValuePair<K,V>(K key) |
Create an entry with a specified key. The value will be the default value of type V .
|
bool Equals(object obj) |
Check equality of entries.
| |||||||||
F bool Equals(KeyValuePair<K,V> other) |
| |||||||||
int GetHashCode() |
Get the hash code of the pair.
| |||||||||
F bool Show(System.Text.StringBuilder stringbuilder, ref int rest, System.IFormatProvider formatProvider) |
| |||||||||
string ToString() |
Pretty print an entry
| |||||||||
F string ToString(string format, System.IFormatProvider formatProvider) |
|
S bool operator !=(KeyValuePair<K,V> pair1, KeyValuePair<K,V> pair2) |
| |||||||
S bool operator ==(KeyValuePair<K,V> pair1, KeyValuePair<K,V> pair2) |
|